home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000139_news@columbia.edu _Wed Jan 29 20:02:16 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id UAA12869
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 29 Jan 1997 20:02:16 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id UAA16759
  7.     for kermit.misc@watsun; Wed, 29 Jan 1997 20:02:15 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: sending a numeric code after dialing
  12. Date: 30 Jan 1997 01:02:15 GMT
  13. Organization: Columbia University
  14. Lines: 34
  15. Message-ID: <5corun$l25$1@apakabar.cc.columbia.edu>
  16. References: <32efc3a3.84242976@144.74.60.11>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6490
  19.  
  20. In article <32efc3a3.84242976@144.74.60.11>,
  21. jeff canar m.a. <jcanar@hsmsun.tob.rpslmc.edu> wrote:
  22. : When dialing long distance, I need to send a numeric access code after
  23. : dialing the number.
  24. : e.g.
  25. : -dial the number,
  26. : -wait for a series of beeps (usually within a couple seconds of
  27. : dialing the number)
  28. : -then enter the long distance code
  29. : -then the call goes through.
  30. :  How can I make this call using Kermit.  I have "Using MS-DOS Kermit",
  31. : but didn't quite see how to do this.  Refering me to a specific place
  32. : in the manual is fine.
  33. : I'm using MS-DOS kermit 3.14, Dell P166, US Robotics Modem.  I know
  34. : kermit works fine cause I can dial anywhere locally without a problem.
  35. This all depends on exactly what you mean by "enter the long distance code".
  36. I assume you mean by touch-tones, right?  Assuming you have a Hayes-like
  37. modem, this would normally be done as follows:
  38.  
  39.   ATDT7654321,,,,,,9876543
  40.  
  41. This "dials the number", then the commas wait for a bunch of seconds, then
  42. the next number is dialed.
  43.  
  44. If on the other hand you mean typing a number into some kind of online
  45. access server, then that's something you would do after you get carrier,
  46. which could be automated using INPUT and OUTPUT as described in the book.
  47.  
  48. - Frank